Signed-off-by: Keir Fraser <keir@xensource.com>
call vmx_vmexit_handler
jmp vmx_asm_do_resume
-.macro vmx_asm_common launch initialized
+.macro vmx_asm_common launch, initialized
1:
/* vmx_test_all_events */
.if \initialized
.endm
ENTRY(vmx_asm_do_launch)
- vmx_asm_common 1 0
+ vmx_asm_common 1, 0
ENTRY(vmx_asm_do_resume)
- vmx_asm_common 0 1
+ vmx_asm_common 0, 1
ENTRY(vmx_asm_do_relaunch)
- vmx_asm_common 1 1
+ vmx_asm_common 1, 1
call vmx_vmexit_handler
jmp vmx_asm_do_resume
-.macro vmx_asm_common launch initialized
+.macro vmx_asm_common launch, initialized
1:
.if \initialized
/* vmx_test_all_events */
.endm
ENTRY(vmx_asm_do_launch)
- vmx_asm_common 1 0
+ vmx_asm_common 1, 0
ENTRY(vmx_asm_do_resume)
- vmx_asm_common 0 1
+ vmx_asm_common 0, 1
ENTRY(vmx_asm_do_relaunch)
- vmx_asm_common 1 1
+ vmx_asm_common 1, 1